$strUnescaped
= UnEscape (<string>)
Reverses
the Escape()
process, i.e., converts the string back from its percentage hexa form.
Parameters
<string>
The string to be unescaped.
Return Value
Returns the converted string.
Remarks
Example
$var = Escape("Hello World")
....
$result = UnEscape($var)